home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
a_to_d
/
ccs16
/
csfpproc.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
392 b
|
27 lines
unit CSFPProc;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, Grids, StdCtrls;
type
TProcForm = class(TForm)
Label1: TLabel;
StringGrid1: TStringGrid;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ProcForm: TProcForm;
implementation
{$R *.DFM}
end.